home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 August
/
CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso
/
disc2
/
nt
/
ntreskit.exe
/
REMOVE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-09-16
|
2KB
|
58 lines
@echo off
if (%PROCESSOR_ARCHITECTURE%)==() goto BadProcessor
if (%WINDIR%)==() goto BadWinDir
if not exist %WINDIR%\system32\ntoskrnl.exe goto BadWinDir
if not exist remove.bat goto CannotRemove
if not exist ftpctrs.h goto CannotRemove
if not exist ftpctrs.ini goto CannotRemove
if not exist ftpctrs.reg goto CannotRemove
if not exist ftpctrs.dll goto CannotRemove
echo Windows NT FTP Server Performance Counters Removal
echo.
echo This removal script makes the following assumptions:
echo.
echo o The UNLODCTR utility is on the path.
echo.
echo o This script is run from the RESKIT directory.
echo.
echo If these assumptions are not valid, please correct and try again.
echo Press CTRL-C to exist now, otherwise
pause
if exist %WINDIR%\system32\ftpctrs.dll del %WINDIR%\system32\ftpctrs.dll >nul 2>&1
unlodctr FTPSVC
if errorlevel 1 goto RemoveError
echo.
echo Windows NT FTP Server Performance Counters Removal successful.
goto Done
:RemoveError
echo.
echo Cannot remove the Windows NT FTP Server Performance Counters.
goto Done
:CannotRemove
echo This removal script MUST be run from the RESKIT
echo directory.
goto Done
:BadProcessor
echo The PROCESSOR_ARCHITECTURE environment variable must be set to the
echo proper processor type (X86, MIPS, etc) before running this script.
goto Done
:BadWinDir
echo The WINDIR environment variable must point to the Windows NT
echo installation directory (i.e. C:\NT).
goto Done
:Done